home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000297_fdc@sesame.cc.columbia.edu_Mon Sep 22 18:40:21 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  4KB  |  108 lines

  1. Article: 14540 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news-not-for-mail
  3. From: fdc@sesame.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Still have file transfer problem
  6. Date: 22 Sep 2003 18:40:12 -0400
  7. Organization: Columbia University
  8. Lines: 91
  9. Message-ID: <bkntoc$q6b$1@sesame.cc.columbia.edu>
  10. References: <C6Kbb.42$d06.2@newssvr22.news.prodigy.com>
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1064270413 20323 128.59.59.56 (22 Sep 2003 22:40:13 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 22 Sep 2003 22:40:13 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14540
  16.  
  17. In article <C6Kbb.42$d06.2@newssvr22.news.prodigy.com>,
  18. Jun Zhang  <nugulus@netscape.net> wrote:
  19. : I read the File Transfer section of the C-Kermit 8.0 Unix tips and 
  20. : hints, and tried
  21. :
  22. This is only a supplement to the manual.  The basic material is in the
  23. manual itself.
  24.  
  25. : set prefixing all
  26. : set parity space
  27. : separately, none of them change a thing.
  28. : Don't know how to try ROBUST.
  29. When you start C-Kermit, it says:
  30.  
  31.   Type ? or HELP for Help.
  32.  
  33. Try typing "help" and read what it says:
  34.  
  35.   Type EXIT    to exit.
  36.   Type INTRO   for a brief introduction to C-Kermit. <--
  37.   ...
  38.  
  39. Now type "intro" and read what it says:
  40.  
  41.   Basic commands:
  42.     EXIT          Exit from Kermit
  43.     HELP          Request general help
  44.     HELP command  Request help about the given command <--
  45.     TAKE          Execute commands from a file
  46.     TYPE          Display a file on your screen
  47.     ORIENTATION   Explains directory structure
  48.  
  49.   Commands for file transfer:
  50.     SEND          Send files
  51.     RECEIVE       Receive files
  52.     GET           Get files from a Kermit server
  53.     RESEND        Recover an interrupted send
  54.     REGET         Recover an interrupted get from a server
  55.     SERVER        Be a Kermit server
  56.  
  57.   File-transfer speed selection:
  58.     FAST          Use fast settings -- THIS IS THE DEFAULT
  59.     CAUTIOUS      Use slower, more cautious settings
  60.     ROBUST        Use extremely slow and cautious settings  <--
  61.  
  62. and so on.  These are commands.  As it says above you can type "help" for
  63. any command, for example:
  64.  
  65.   help robust
  66.  
  67. to get help about that command.  Give the "robust" command to the file
  68. sender.  That's the whole command, just the one word, "robust".
  69.  
  70. : Both side of the system doesn't have space problem, but if I reduce the 
  71. : size of the file being transfered, send could be successful. For 
  72. : instance, if this successfully transfered file has 12 lines of text, and 
  73. : I yank the existing 12 lines and make a new file with 24 lines, send 
  74. : will fail.
  75. It sounds like a lack of effective flow control.
  76.  
  77. : I have emailed my script to kermit-support@columbia.edu. Please help me.
  78. It looks like you are configuring the calling modem correctly, but I can't
  79. tell from here.  When the modem dials, are all the AT commands accepted?
  80. You have to use SET DIAL DISPLAY ON to watch the AT command dialog.
  81.  
  82. What about the answering modem?  Is the answering modem configured for
  83. hardware flow control?  Is the port it is connected to configured for
  84. hardware flow control?  These are system administration questions, which
  85. have nothing to do with Kermit.  The remote modem and port have to be
  86. configured correctly even before it answers your call.
  87.  
  88. Kermit can control the port and modem on the CALLING system, but not on the
  89. CALLED system when the call is being answered by getty and you are logging 
  90. in normally.  If you can get the remote computer's port and modem configured
  91. appropriatele for high-speed connections, then the transfers should work
  92. very well.
  93.  
  94. If you can't change the configuration of the remote computer then you can
  95. change the Kermit settings to use a slower method of transfer.  There is
  96. an entire chapter in the C-Kermit about how to troubleshoot file transfer
  97. problems, I'm not going to type the whole chapter into this reply.
  98.  
  99. For configuring modems, again, there is a whole chapter in the book.
  100. You can order it from Amazon:
  101.  
  102.   http://www.amazon.com/exec/obidos/redirect?tag=kermit95-20&path=ISBN=1555581641/6584-5665863-047434
  103.  
  104. - Frank
  105.